home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / TPP1SRC.ZIP / BUILD.BAT < prev    next >
Encoding:
DOS Batch File  |  1996-01-03  |  261 b   |  21 lines

  1. @ECHO OFF
  2. cls
  3. echo.
  4. echo Building TPP1.ASM
  5. echo.
  6. if '%1'=='DEBUG' goto DebugMode
  7. tasm /m3 tpp1
  8. tlink /e /x tpp1,tpp1.exe
  9. lzexe tpp1
  10. goto Ended
  11.  
  12. :DebugMode
  13. tasm /m3 /zi tpp1
  14. tlink /e /x /v tpp1,tpp1.exe
  15.  
  16. :Ended
  17. cls
  18.  
  19. del tpp1.old
  20. del tpp1.obj
  21.